From 561a73d746108ca91ae446133f88350a1a112370 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 6 Mar 1993 06:03:19 +0000 Subject: [PATCH] Fix bug in previous change. --- lisp/comint.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/comint.el b/lisp/comint.el index a35ae10fd02..e4b3f950058 100644 --- a/lisp/comint.el +++ b/lisp/comint.el @@ -1094,7 +1094,7 @@ it just adds completion characters to the end of the filename." (sit-for 0) (message "Hit space to flush") (let ((ch (read-event))) - (if (= ch ?\ ) + (if (eq ch ?\ ) (set-window-configuration conf) (setq unread-command-events (list ch))))))))) -- 2.30.2